/* Reset some default styles */

/* Reset some default styles */

  
  /* Style the container for travel packages */
  .travel-packages-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f5f5f5; /* Background color for the full screen */
    overflow: hidden;
  }
  
  /* Style each travel package */
  .travel-package {
    width: 80%;
    max-width: 600px; /* Limit the maximum width of packages */
    border: 1px solid #ddd;
    display: flex;
    flex-direction: row;
    border-radius: 10px;
    transition: transform 0.3s;
  }
  
  .travel-package:hover img {
    transform: scale(1.05);
  }
  
  .travel-package img {
    width: 40%;
    height: auto;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
  }
  
  .package-details {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    border-radius: 0 10px 10px 0;
    font-family: Arial, sans-serif; /* Choose your desired font */
    color: #333;
  }
  
  /* Media queries for responsiveness */
  @media (max-width: 768px) {
    .travel-package {
      flex-direction: column;
      align-items: center;
    }
  
    .travel-package img {
      width: 100%;
      border-radius: 10px 10px 0 0;
    }
  }
  

  /*--------------------------------------------------------------
# On Focus Section
--------------------------------------------------------------*/

